home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer)…68k, x86, SPARC, PA-RISC] / NeXTSTEP 3.3 Dev Intel.iso / NextDeveloper / Headers / bsd / sparc / vmparam.h < prev   
Text File  |  1995-02-14  |  727b  |  37 lines

  1. /* 
  2.  * HISTORY
  3.  * 21-Apr-1994 Mac Gillon at NeXT
  4.  *    Created.
  5.  *
  6.  */ 
  7.  
  8. #ifndef    _BSD_SPARC_VMPARAM_H_
  9. #define    _BSD_SPARC_VMPARAM_H_ 1
  10.  
  11. #import <sys/resource.h>
  12.  
  13.  
  14. /*
  15.  * Virtual memory related constants, all in bytes
  16.  */
  17. #ifndef DFLDSIZ
  18. #define    DFLDSIZ        (6*1024*1024)        /* initial data size limit */
  19. #endif
  20. #ifndef MAXDSIZ
  21. #define    MAXDSIZ        (RLIM_INFINITY)        /* max data size */
  22. #endif
  23. #ifndef    DFLSSIZ
  24. #define    DFLSSIZ        (512*1024)        /* initial stack size limit */
  25. #endif
  26. #ifndef    MAXSSIZ
  27. #define    MAXSSIZ        64*1024*1024    /* max stack size */
  28. #endif
  29. #ifndef    DFLCSIZ
  30. #define DFLCSIZ        (0)            /* initial core size limit */
  31. #endif
  32. #ifndef    MAXCSIZ
  33. #define MAXCSIZ        (RLIM_INFINITY)        /* max core size */
  34. #endif    MAXCSIZ
  35.  
  36. #endif    _BSD_SPARC_VMPARAM_H_
  37.